ci/rpmostree: Fix use of `fatal`
authorColin Walters <walters@verbum.org>
Thu, 24 Jan 2019 10:36:40 +0000 (11:36 +0100)
committerAtomic Bot <atomic-devel@projectatomic.io>
Fri, 1 Mar 2019 16:41:09 +0000 (16:41 +0000)
We're not using libtest, just inline it.

Closes: #1806
Approved by: jlebon

ci/rpmostree.sh

index 421aca380c08852e2ddd8145a9b488c83013e2fe..85425c3d235afd347ca48fed7f147b6494550b61 100755 (executable)
@@ -45,7 +45,7 @@ make -j 8 check
 # Basic sanity test of rpm-ostree+new ostree by restarting rpm-ostreed
 if ! make vmsync; then
     ssh -o User=root vmcheck 'journalctl --no-pager | tail -1000'
-    fatal "vmsync failed"
+    echo "vmsync failed"; exit 1
 fi
 # Now run tests; just a subset ⊂ for now to avoid CI overload
 make vmcheck TESTS="layering-basic-1 layering-basic-2"